#include #include //I2C pins declaration LiquidCrystal_I2C lcd(0x27,20,4); //set the I2C address 0x27 and the LCD used is 4x20 void setup() { lcd.begin(); // initialize the lcd. lcd.backlight(); //set backlight on. } void loop() { //Write your code lcd.setCursor(0,0); //Defining positon of the cursor. lcd.print(" Fab 2019 "); //print the following in the screen delay(3000);//Delay for 3 sec lcd.setCursor(0,1); lcd.print("Bahrain"); delay(3000); lcd.setCursor(0,2); lcd.print("Zahra Almukhariq"); delay(3000); lcd.setCursor(0,3); lcd.print("Thank you!!"); delay(3000); }